<style>


body {
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
    }

    / Navbar /
    .navbar {
      width: 100%;
      padding: 20px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: absolute;
      top: 0;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo span {
      background: #ffca28;
      padding: 8px 16px;
      border-radius: 20px;
      font-weight: bold;
      color: #000;
    }

    .menu a {
      margin-left: 60px;
      text-decoration: none;
      color: #000;
      font-size: 16px;
      
    }

    /* Main Content */
    .container {
      text-align: center;
      margin-top: 120px;
    }

    .container h1 {
      font-size: 28px;
      margin-bottom: 30px;
    }

    .container input {
      width: 300px;
      padding: 12px;
      margin: 10px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .btn {
      width: 320px;
      padding: 14px;
      margin-top: 15px;
      border: none;
      border-radius: 6px;
      background: #ffca28;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
    }

    .btn:hover {
      background: #f0b400;
    }

</style>
